projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d685741
)
* lisp.h (malloc, realloc): Declare these to return void *, to
author
Jim Blandy
<jimb@redhat.com>
Tue, 18 May 1993 22:44:27 +0000
(22:44 +0000)
committer
Jim Blandy
<jimb@redhat.com>
Tue, 18 May 1993 22:44:27 +0000
(22:44 +0000)
avoid conflicts with ANSI header files.
src/lisp.h
patch
|
blob
|
history
diff --git
a/src/lisp.h
b/src/lisp.h
index a13db81a776eab5ef084eadbf23075d5f8e786e7..1fdcae2e62864ba6c215f92b91ad87080e197dc2 100644
(file)
--- a/
src/lisp.h
+++ b/
src/lisp.h
@@
-1292,7
+1292,8
@@
extern int immediate_quit; /* Nonzero means ^G can quit instantly */
extern void debugger ();
-extern char *malloc (), *realloc (), *getenv (), *ctime (), *getwd ();
+extern void *malloc (), *realloc ();
+extern char *getenv (), *ctime (), *getwd ();
extern long *xmalloc (), *xrealloc ();
extern void xfree ();